home *** CD-ROM | disk | FTP | other *** search
- package mx.states
- {
- import mx.core.mx_internal;
- import mx.effects.Effect;
-
- use namespace mx_internal;
-
- public class Transition
- {
- mx_internal static const VERSION:String = "2.0.1.0";
-
- public var effect:Effect;
-
- public var toState:String = "*";
-
- public var fromState:String = "*";
-
- public function Transition()
- {
- fromState = "*";
- toState = "*";
- super();
- }
- }
- }
-
-